home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 2009 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.7 KB  |  49 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: news.shlink.de!wiloyee!chaos
  3. From: chaos@wiloyee.shnet.org
  4. Subject: Re: playing 14 bit samples. how?
  5. X-Newsreader: TIN [UNIX 1.3 950515BETA PL0]
  6. Organization: Studentenhochhaus Wedel Deutschland
  7. Message-ID: <DLqGAB.13p@wiloyee.shnet.org>
  8. References: <4e0eeo$74f@tic.sm.dsi.unimi.it> <3103DED5.41C6@stud.unit.no>
  9. Date: Thu, 25 Jan 1996 10:39:47 GMT
  10.  
  11. Steffen Thorsen (steffent@stud.unit.no) wrote:
  12. : stefano caselli wrote:
  13. : > 
  14. : > I've found on Aminet some progs claiming to be able to play samples
  15. : > with  14 bit quality, using only the standard amiga audio hardware.
  16. : > I'd like to know how this can be done (if possible).
  17. : > Can someone post some text about it? (detailed explanations,please)
  18. : > 
  19. : > thanx.
  20. : The Amiga has 8 bit sound by standard. But it also has 6 bit volume
  21. : registers for each sound channel which can be adjusted independently
  22. : from the main sound. And 6+8 bit is 14 bit as far as I know. It seems
  23. : easy, but needs a whole lot of CPU power doing this, while normal 8-bit
  24. : can be handled directly by DMA. Another problem is that you will have to
  25. : calibrate the programs to your speakers.
  26. : Download those programs, they probably have a more detailed explanation!
  27.  
  28. i thik this is wrong. you can't use one channel to play 8 bit data and 6 bit
  29. volume. you will get
  30.  
  31.    DATA * VOLUME, 
  32.  
  33. and you need
  34.  
  35.    DATA1 * 64  +  DATA2
  36.  
  37. that's truly 14 bit, and it can be done by letting 2 channels run 100%
  38. syncron and setting volume 1 to 64 and volume 2 to 1.
  39.  
  40. i hope this works, i never tried.
  41.  
  42. you woun't need any more cpu time if you prepare your samples correctly, but
  43. you only have 2 voices. if you want 4, you need to mix, and that's expensive
  44.  
  45.  
  46.  
  47. dierk "chaos" ohlerich.
  48.